home *** CD-ROM | disk | FTP | other *** search
- /*** WALLOC.H ***/
-
- /* Written By P.A. McKenzie
- * The C Window Library
- * Copyright (C) 1990 All Rights Reserved
- */
- #ifndef WALLOC_DEF
- #define WALLOC_DEF
-
- #if defined (__TURBOC__)
- #include <alloc.h>
- #endif
-
- #if defined (LATTICE)
- #include <stdlib.h>
- #endif
-
- #if defined (MSC) || (POWERC)
- # include <malloc.h>
- #ifndef NULL
- # define NULL ((char *)0)
- #endif
- #endif
-
- #if defined (__ZTC__)
- # include <stdlib.h>
- #endif
-
-
- #endif